Python – list与字符串str相互转换方法总结
1 字符串str转list的方法总结 # -*- coding: utf-8 -*- if __name__ == '__main__': temp_str = '1once time is wasted2'; temp_list = list(temp_str) print(temp_list) …
- Python
- 2022-06-30
C++11/std::thread – 线程管理join/detach
1 join方法 代码示例: #include <iostream> #include <thread> void HelloWorld() { std::cout << "hello world" << std::endl; } int main()…
- C++
- 2020-04-01